a996d24ec0ccc2e42aa34eeca8674cd1569b8870,plugins/eclipse/src/org/jetbrains/idea/eclipse/conversion/EclipseClasspathReader.java,EclipseClasspathReader,readClasspathEntry,#ModifiableRootModel#Collection#Collection#Set#Set#String#Element#,122
Before Change
srcPath = null;
}
usedVariables.add(srcVar);
modifiableModel.addRoot(PathMacroManager.getInstance(rootModel.getModule()).expandPath(getVariableRelatedPath(srcVar, srcPath)), OrderRootType.SOURCES);
}
final List<String> docPaths = getClasspathEntryAttribute(element);
After Change
srcPath = null;
}
usedVariables.add(srcVar);
final String srcUrl = PathMacroManager.getInstance(rootModel.getModule()).expandPath(getVariableRelatedPath(srcVar, srcPath));
modifiableModel.addRoot(getUrl(srcUrl), OrderRootType.SOURCES);
}
final List<String> docPaths = getClasspathEntryAttribute(element);